/* 
Milestone Project style sheet
Filename: Life experiences/Hobby.css

Author: Andres Marzan
Date: 05/11/25
Project Milestone - IT240 Web Fluency
*/

/* reset styles */
html {
    font-size: 16px;
}
body, div, footer, header, h1, p, li, ol, section, table, tbody, td, tfoot, th, thead, tr {
    border: 0;
    padding: 0;
    margin: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
ol {
   list-style-type: none;
}

/* body and page container */
.container {
    max-width: 700px;
    margin: 0 auto;
    background-color: ivory;
    position: relative;
 }
 
 body {
    font-family:"Times New Roman", Times, serif;
    border-left: 1px solid skyblue;
    border-right: 1px solid skyblue;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 10px 6px -6px #777;
 }

 /* header section */
header {
    width: 100%;
    max-width: 700px;
    position: relative;
    padding: 0em;
    background-color: goldenrod;
 }
 h1 {
    padding: 0em;
    color: red;
    text-align: center;
    font-weight: 550;
    font-size: 3em;
    font-family: Italianno, 'Times New Roman', Times, serif;
    text-shadow: 2px -1px 2px goldenrod
 }
header p {
   text-align: center;
   color: gold;
   padding: 0.5em;
   font-size: 1.5em;
   font-style: italic;
}

/* Main Content */
article div {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2% 1em;
    background-color: ivory;
    overflow: auto;
 }

 article h2, h3, h4 {
    font-size: 1.3em;
    color: goldenrod;
    margin-bottom: -1em;
 }

 article div p {
    padding-top: 2em;
    font-style: italic;
    font-weight: lighter;
    color: black;
 }

 article p.imagemap {
    text-align: center;
 }
 article p.imagemap img {
    border: 1px solid black;
    max-width: none;
 }
 article figure {
    max-width: 100%;
    margin-left: 2em;
    margin-top: 4em;
    float: right;
 }

 article figure.picture {
    margin-top: 2em;
 }

 /* Main content lists */
 article ol {
   margin: 1em 0 1em 2em;
   font-style: italic;
   color: goldenrod;
   font-size: 1.2em;
   list-style-type: decimal;
   margin-bottom: 0em;
}
article div.section1 p::first-line {
   font-weight: bold;
   color: goldenrod;
}

 /* Main Content Tables */
 td, th {
    border: 1px solid black;
    font-size: 1.3em;
    color: black;
    padding: 0.4em;
    text-align: left;
    font-style: italic;
 }
 table {
    width: 100%;
    border: 2px solid black;
 }
 th {
    background-color: goldenrod;
 }
.table-heading-column {
    background-color: #efd300de;
}
.table-data-columns {
    background-color:  beige;
}

 /* footer section */
 footer {
    padding: 0.6em;
    background-color: goldenrod;
    text-align: center;
    clear: right;
    margin: 0em;
}
footer p {
    color: black;
    font-size: 1.5em;
    font-style: italic;
    text-shadow: 2px -1px 2px gold
 }

/* print styles */
@media print {
    .container, h1, h2, header p, p {
       color: black;
       background-color: white;
    }
    nav {
     display: none;
    }
 }
 @page {
    margin: 1in;
 }